How to use “Nullable Coalescing Operator” (??) in C#?
1936
17-Jul-2017
Sushant Mishra
17-Jul-2017Nullable Coalescing Operator can be used with reference types and nullable value types. So if the first operand of the expression is null then the value of second operand is assigned to the variable. For example,